home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-15 | 906 b | 41 lines | [TEXT/MPS ] |
- ;
- ; File: ActionAtomIntf.a
- ;
- ; Contains: Assembler declarations for things the Installer wants to tell
- ; action atoms about.
- ;
- ; Written by: Bobby Carp
- ;
- ; Copyright: © 1990, 1992 by Apple Computer, Inc., all rights reserved.
- ;
- ; Change History (most recent first):
- ;
- ; <1> 7/6/93 KBA first checked in
- ; <2> 11/7/90 BAC Adding the AAPBRec that defines the parameters an action atom
- ; receives.
- ; <1> 10/8/90 BAC first checked in
- ;
- ; To Do:
- ;
-
-
- before EQU 0
- after EQU 1
- cleanUpCancel EQU 2
-
-
- ; The action atom param block record contains all of the parameters that action atoms
- ; receive. The first (and only) parameter to action atoms is a ptr to this block
-
- AAPBRec RECORD 0
- targetVRefNum ds.w 1
- blessedDirID ds.l 1
- aaRefCon ds.l 1
- doingInstall ds.b 1
- whichStage ds.b 1
- didLiveUpdate ds.b 1
- pad1 ds.b 1
- installerTempDirID ds.l 1
- size EQU *
- ENDR
-